DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing.Search Namespace / IIndexScanner<T> Interface / GroupJoin Method / GroupJoin<T2,TResult>(IEnumerable<T2>,Func<T2,Object>,Func<T,IEnumerable<T2>,TResult>) Method
The type of the elements of the second sequence.
The type of the result elements.
The second sequence to join to this collection.
A function to extract from an item of the second sequence the value to match against this collection's key value.
A function to create a result element from an element from this collection and a collection of matching elements from the second sequence.

In This Topic
    GroupJoin<T2,TResult>(IEnumerable<T2>,Func<T2,Object>,Func<T,IEnumerable<T2>,TResult>) Method
    In This Topic
    Correlates the items of this indexed collection with the items of another sequence and groups the results by the item of this collection.
    Syntax

    Parameters

    source
    The second sequence to join to this collection.
    keySelector
    A function to extract from an item of the second sequence the value to match against this collection's key value.
    resultSelector
    A function to create a result element from an element from this collection and a collection of matching elements from the second sequence.

    Type Parameters

    T2
    The type of the elements of the second sequence.
    TResult
    The type of the result elements.

    Return Value

    Enumeration of objects obtained by applying the result selector to group pairs, where each pair consists of an item of this collection and the corresponding enumeration of the items of the second sequence joined to it.
    See Also